home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / lib / partman / valid_filesystems / 80ntfs < prev   
Text File  |  2009-10-28  |  266b  |  24 lines

  1. #!/bin/sh
  2.  
  3. dev=$1
  4. id=$2
  5. property=$3
  6.  
  7. [ -f /var/lib/partman/ntfs ] || exit 0
  8.  
  9. case $property in
  10.     formatable)
  11.     ;;
  12.     existing)
  13.     [ -f $id/detected_filesystem ] || exit 0
  14.     fs=$(cat $id/detected_filesystem)
  15.  
  16.     case "$fs" in
  17.         ntfs)
  18.         echo ntfs
  19.         ;;
  20.     esac
  21.     ;;
  22. esac
  23.  
  24.